Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | slightly stricter checking for TCL_MAJOR_VERSION in rules.vc |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | core-8-6-branch |
Files: | files | file ages | folders |
SHA3-256: |
86b4decffb2c92a5e187bda1f8b8e943 |
User & Date: | jan.nijtmans 2022-06-24 14:26:14.224 |
Context
2022-06-24
| ||
20:02 | typo's check-in: 2fb4d36f03 user: jan.nijtmans tags: core-8-6-branch | |
14:27 | Merge 8.6 check-in: 137b0b5214 user: jan.nijtmans tags: core-8-branch | |
14:26 | slightly stricter checking for TCL_MAJOR_VERSION in rules.vc check-in: 86b4decffb user: jan.nijtmans tags: core-8-6-branch | |
2022-06-23
| ||
12:57 | Slightly better integer overflow handling in Tcl_ListObjReplace() check-in: 78b3f821c7 user: jan.nijtmans tags: core-8-6-branch | |
Changes
Changes to win/rules.vc.
︙ | ︙ | |||
689 690 691 692 693 694 695 | # DOTVERSION - set as (for example) 2.5 # VERSION - set as (for example 25) #-------------------------------------------------------------- !if [echo REM = This file is generated from rules.vc > versions.vc] !endif !if [echo TCL_MAJOR_VERSION = \>> versions.vc] \ | | | 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 | # DOTVERSION - set as (for example) 2.5 # VERSION - set as (for example 25) #-------------------------------------------------------------- !if [echo REM = This file is generated from rules.vc > versions.vc] !endif !if [echo TCL_MAJOR_VERSION = \>> versions.vc] \ && [nmakehlp -V "$(_TCL_H)" "define TCL_MAJOR_VERSION" >> versions.vc] !endif !if [echo TCL_MINOR_VERSION = \>> versions.vc] \ && [nmakehlp -V "$(_TCL_H)" TCL_MINOR_VERSION >> versions.vc] !endif !if [echo TCL_RELEASE_SERIAL = \>> versions.vc] \ && [nmakehlp -V "$(_TCL_H)" TCL_RELEASE_SERIAL >> versions.vc] !endif |
︙ | ︙ |